home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / vdimgr.zoo / ash / readline / Make.os9 < prev    next >
Encoding:
Text File  |  1993-03-16  |  348 b   |  20 lines

  1. ##  $Revision: 1.1 $
  2. ##
  3. ##  OS-9 makefile for editline library.
  4. ##
  5.  
  6. .SUFFIXES:
  7.  
  8. RFILES    = editline.r complete.r sysos9.r
  9.  
  10. %.r:        %.c
  11.     cc68 -r -Dstrchr=index -Dstrrchr=rindex -DNEED_STRDUP -DSYS_OS9 $*.c
  12.  
  13. testit:        testit.r editline.lib
  14.     cc68 -f=testit testit.r -l=editline.lib
  15.  
  16. $(RFILES):    $(RFILES:%.r=%.c)
  17.  
  18. editline.lib:    $(RFILES)
  19.     cat $(RFILES) >$@
  20.